home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / mailContextMenus.js < prev    next >
Encoding:
JavaScript  |  2006-01-12  |  24.8 KB  |  644 lines

  1. /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Mozilla Communicator client code, released
  16.  * March 31, 1998.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Netscape Communications Corporation.
  20.  * Portions created by the Initial Developer are Copyright (C) 2000
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *   Jan Varga <varga@ku.sk>
  25.  *   Hakan Waara <hwaara@chello.se>
  26.  *
  27.  * Alternatively, the contents of this file may be used under the terms of
  28.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  29.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  30.  * in which case the provisions of the GPL or the LGPL are applicable instead
  31.  * of those above. If you wish to allow use of your version of this file only
  32.  * under the terms of either the GPL or the LGPL, and not to allow others to
  33.  * use your version of this file under the terms of the MPL, indicate your
  34.  * decision by deleting the provisions above and replace them with the notice
  35.  * and other provisions required by the GPL or the LGPL. If you do not delete
  36.  * the provisions above, a recipient may use your version of this file under
  37.  * the terms of any one of the MPL, the GPL or the LGPL.
  38.  *
  39.  * ***** END LICENSE BLOCK ***** */
  40.  
  41. //NOTE: gMessengerBundle must be defined and set or this Overlay won't work
  42.  
  43. // Function to change the highlighted row back to the row that is currently
  44. // outline/dotted without loading the contents of either rows.  This is
  45. // triggered when the context menu for a given row is hidden/closed
  46. // (onpopuphiding).
  47. function RestoreSelectionWithoutContentLoad(tree)
  48. {
  49.     // If a delete or move command had been issued, then we should
  50.     // reset gRightMouseButtonDown and gThreadPaneDeleteOrMoveOccurred
  51.     // and return (see bug 142065).
  52.     if(gThreadPaneDeleteOrMoveOccurred)
  53.     {
  54.       gRightMouseButtonDown = false;
  55.       gThreadPaneDeleteOrMoveOccurred = false;
  56.       return;
  57.     }
  58.  
  59.     var treeSelection = tree.view.selection;
  60.  
  61.     // make sure that currentIndex is valid so that we don't try to restore
  62.     // a selection of an invalid row.
  63.     if((!treeSelection.isSelected(treeSelection.currentIndex)) &&
  64.        (treeSelection.currentIndex >= 0))
  65.     {
  66.         treeSelection.selectEventsSuppressed = true;
  67.         treeSelection.select(treeSelection.currentIndex);
  68.         treeSelection.selectEventsSuppressed = false;
  69.  
  70.         // Keep track of which row in the thread pane is currently selected.
  71.         // This is currently only needed when deleting messages.  See
  72.         // declaration of var in msgMail3PaneWindow.js.
  73.         if(tree.id == "threadTree")
  74.           gThreadPaneCurrentSelectedIndex = treeSelection.currentIndex;
  75.     }
  76.     else if(treeSelection.currentIndex < 0)
  77.         // Clear the selection in the case of when a folder has just been
  78.         // loaded where the message pane does not have a message loaded yet.
  79.         // When right-clicking a message in this case and dismissing the
  80.         // popup menu (by either executing a menu command or clicking
  81.         // somewhere else),  the selection needs to be cleared.
  82.         // However, if the 'Delete Message' or 'Move To' menu item has been
  83.         // selected, DO NOT clear the selection, else it will prevent the
  84.         // tree view from refreshing.
  85.         treeSelection.clearSelection();
  86.  
  87.     // Need to reset gRightMouseButtonDown to false here because
  88.     // TreeOnMouseDown() is only called on a mousedown, not on a key down.
  89.     // So resetting it here allows the loading of messages in the messagepane
  90.     // when navigating via the keyboard or the toolbar buttons *after*
  91.     // the context menu has been dismissed.
  92.     gRightMouseButtonDown = false;
  93. }
  94.  
  95. function threadPaneOnPopupHiding()
  96. {
  97.   RestoreSelectionWithoutContentLoad(GetThreadTree());
  98. }
  99.  
  100. function fillThreadPaneContextMenu()
  101. {
  102.   var numSelected = GetNumSelectedMessages();
  103.  
  104.   var isNewsgroup = false;
  105.   var selectedMessage = null;
  106.  
  107.   // Clear the global var used to keep track if a 'Delete Message' or 'Move
  108.   // To' command has been triggered via the thread pane context menu.
  109.   gThreadPaneDeleteOrMoveOccurred = false;
  110.  
  111.   if(numSelected >= 0) {
  112.     selectedMessage = GetFirstSelectedMessage();
  113.     isNewsgroup = IsNewsMessage(selectedMessage);
  114.   }
  115.  
  116.   SetupNewMessageWindowMenuItem("threadPaneContext-openNewWindow", numSelected, false);
  117.   SetupEditAsNewMenuItem("threadPaneContext-editAsNew", numSelected, false);
  118.  
  119.   ShowMenuItem("threadPaneContext-sep-open", (numSelected <= 1));
  120.  
  121.   SetupReplyToSenderMenuItem("threadPaneContext-replySender", numSelected, false);
  122.   SetupReplyToNewsgroupMenuItem("threadPaneContext-replyNewsgroup", numSelected, isNewsgroup, false);
  123.   SetupReplyAllMenuItem("threadPaneContext-replyAll", numSelected, false);
  124.   SetupForwardMenuItem("threadPaneContext-forward", numSelected, false);
  125.   SetupForwardAsAttachmentMenuItem("threadPaneContext-forwardAsAttachment", numSelected, false);
  126.  
  127.   ShowMenuItem("threadPaneContext-sep-reply", true);
  128.  
  129.   SetupCopyMessageUrlMenuItem("threadPaneContext-copyMessageUrl", numSelected, isNewsgroup, numSelected != 1); 
  130.   SetupCopyMenuItem("threadPaneContext-copyMenu", numSelected, false);
  131.   SetupMoveMenuItem("threadPaneContext-moveMenu", numSelected, isNewsgroup, false);
  132.   EnableMenuItem("threadPaneContext-labels", (numSelected >= 1));
  133.   EnableMenuItem("threadPaneContext-mark", (numSelected >= 1));
  134.   SetupSaveAsMenuItem("threadPaneContext-saveAs", numSelected, false);
  135.   SetupPrintPreviewMenuItem("threadPaneContext-printpreview", numSelected, false);
  136.   SetupPrintMenuItem("threadPaneContext-print", numSelected, false);
  137.   SetupDeleteMenuItem("threadPaneContext-delete", numSelected, false);
  138.   SetupAddSenderToABMenuItem("threadPaneContext-addSenderToAddressBook", numSelected, false);
  139.   SetupAddAllToABMenuItem("threadPaneContext-addAllToAddressBook", numSelected, false);
  140.  
  141.   ShowMenuItem("threadPaneContext-sep-edit", (numSelected <= 1));
  142.  
  143.   return(true);
  144. }
  145.  
  146. function SetupNewMessageWindowMenuItem(menuID, numSelected, forceHide)
  147. {
  148.   ShowMenuItem(menuID, (numSelected <= 1) && !forceHide);
  149.   EnableMenuItem(menuID, (numSelected == 1));
  150. }
  151.  
  152. function SetupEditAsNewMenuItem(menuID, numSelected, forceHide)
  153. {
  154.   ShowMenuItem(menuID, (numSelected <= 1)&& !forceHide);
  155.   EnableMenuItem(menuID, (numSelected == 1));
  156. }
  157.  
  158. function SetupReplyToSenderMenuItem(menuID, numSelected, forceHide)
  159. {
  160.   ShowMenuItem(menuID, (numSelected <= 1)&& !forceHide);
  161.   EnableMenuItem(menuID, (numSelected == 1));
  162. }
  163.  
  164. function SetupReplyToNewsgroupMenuItem(menuID, numSelected, isNewsgroup, forceHide)
  165. {
  166.   ShowMenuItem(menuID, (numSelected <= 1) && isNewsgroup && !forceHide);
  167.   EnableMenuItem(menuID,  (numSelected == 1));
  168. }
  169.  
  170. function SetupReplyAllMenuItem(menuID, numSelected, forceHide)
  171. {
  172.   ShowMenuItem(menuID, (numSelected <= 1) && !forceHide);
  173.   EnableMenuItem(menuID, (numSelected == 1));
  174. }
  175.  
  176. function SetupForwardMenuItem(menuID, numSelected, forceHide)
  177. {
  178.   ShowMenuItem(menuID,  (numSelected <= 1) && !forceHide);
  179.   EnableMenuItem(menuID, (numSelected > 0));
  180. }
  181.  
  182. function SetupForwardAsAttachmentMenuItem(menuID, numSelected, forceHide)
  183. {
  184.   ShowMenuItem(menuID,  (numSelected > 1) && !forceHide);
  185.   EnableMenuItem(menuID, (numSelected > 1));
  186. }
  187.  
  188. function SetupMoveMenuItem(menuID, numSelected, isNewsgroup, forceHide)
  189. {
  190.   ShowMenuItem(menuID, !isNewsgroup && !forceHide);
  191.  
  192.   var msgFolder = GetLoadedMsgFolder();
  193.   // disable move if we can't delete message(s) from this folder
  194.   var enableMenuItem = (numSelected > 0) && msgFolder && msgFolder.canDeleteMessages;
  195.   EnableMenuItem(menuID, enableMenuItem);
  196. }
  197.  
  198. function SetupCopyMessageUrlMenuItem(menuID, numSelected, isNewsgroup, forceHide)
  199. {
  200.   ShowMenuItem(menuID, isNewsgroup && !forceHide);
  201.   EnableMenuItem(menuID, (numSelected > 0));
  202. }
  203.  
  204. function SetupCopyMenuItem(menuID, numSelected, forceHide)
  205. {
  206.   ShowMenuItem(menuID, !forceHide);
  207.   EnableMenuItem(menuID, (numSelected > 0));
  208. }
  209.  
  210. function SetupLabelsMenuItem(menuID, numSelected, forceHide)
  211. {
  212.   ShowMenuItem(menuID, (numSelected <= 1) && !forceHide);
  213.   EnableMenuItem(menuID, (numSelected == 1));
  214. }
  215.  
  216. function SetupMarkMenuItem(menuID, numSelected, forceHide)
  217. {
  218.   ShowMenuItem(menuID, (numSelected <= 1) && !forceHide);
  219.   EnableMenuItem(menuID, (numSelected == 1));
  220. }
  221.  
  222. function SetupSaveAsMenuItem(menuID, numSelected, forceHide)
  223. {
  224.   ShowMenuItem(menuID, (numSelected <= 1) && !forceHide);
  225.   EnableMenuItem(menuID, (numSelected == 1));
  226. }
  227.  
  228. function SetupPrintPreviewMenuItem(menuID, numSelected, forceHide)
  229. {
  230.   ShowMenuItem(menuID, (numSelected <= 1) && !forceHide);
  231.   EnableMenuItem(menuID, (numSelected == 1));
  232. }
  233.  
  234. function SetupPrintMenuItem(menuID, numSelected, forceHide)
  235. {
  236.   ShowMenuItem(menuID, !forceHide);
  237.   EnableMenuItem(menuID, (numSelected > 0));
  238. }
  239.  
  240. function SetupAddSenderToABMenuItem(menuID, numSelected, forceHide)
  241. {
  242.   ShowMenuItem(menuID, (numSelected <= 1) && !forceHide);
  243.   EnableMenuItem(menuID, false);
  244. }
  245.  
  246. function SetupAddAllToABMenuItem(menuID, numSelected, forceHide)
  247. {
  248.   ShowMenuItem(menuID, (numSelected <= 1) && !forceHide);
  249.   EnableMenuItem(menuID, false);
  250. }
  251.  
  252. function SetupDeleteMenuItem(menuID, numSelected, forceHide)
  253. {
  254.   // This function is needed for the case where a folder is just loaded (while
  255.   // there isn't a message loaded in the message pane), a right-click is done
  256.   // in the thread pane.  This function will disable enable the 'Delete
  257.   // Message' menu item.
  258.   ShowMenuItem(menuID, !forceHide);
  259.   EnableMenuItem(menuID, (numSelected > 0));
  260.   goUpdateCommand('cmd_delete');
  261. }
  262.  
  263. function folderPaneOnPopupHiding()
  264. {
  265.   RestoreSelectionWithoutContentLoad(GetFolderTree());
  266. }
  267.  
  268. function fillFolderPaneContextMenu()
  269. {
  270.   if (IsFakeAccount())
  271.     return false;
  272.  
  273.   var folderTree = GetFolderTree();
  274.   var startIndex = {};
  275.   var endIndex = {};
  276.   folderTree.view.selection.getRangeAt(0, startIndex, endIndex);
  277.   if (startIndex.value < 0)
  278.     return false;
  279.   var numSelected = endIndex.value - startIndex.value + 1;
  280.   var folderResource = GetFolderResource(folderTree, startIndex.value);
  281.  
  282.   var isServer = GetFolderAttribute(folderTree, folderResource, "IsServer") == 'true';
  283.   var serverType = GetFolderAttribute(folderTree, folderResource, "ServerType");
  284.   var specialFolder = GetFolderAttribute(folderTree, folderResource, "SpecialFolder");
  285.   var canSubscribeToFolder = (serverType == "nntp") || (serverType == "imap");
  286.   var isNewsgroup = !isServer && serverType == 'nntp';
  287.   var isMailFolder = !isServer && serverType != 'nntp';
  288.   var isVirtualFolder = (specialFolder == "Virtual");
  289.   var canGetMessages =  (isServer && (serverType != "nntp") && (serverType !="none")) || isNewsgroup;
  290.  
  291.   EnableMenuItem("folderPaneContext-properties", true);
  292.   ShowMenuItem("folderPaneContext-getMessages", (numSelected <= 1) && canGetMessages);
  293.   EnableMenuItem("folderPaneContext-getMessages", true);
  294.  
  295.   ShowMenuItem("folderPaneContext-openNewWindow", (numSelected <= 1) && !isServer);
  296.   EnableMenuItem("folderPaneContext-openNewWindow", true);
  297.  
  298.   SetupRenameMenuItem(folderResource, numSelected, isServer, serverType, specialFolder);
  299.   SetupRemoveMenuItem(folderResource, numSelected, isServer, serverType, specialFolder);
  300.   SetupCompactMenuItem(folderResource, numSelected);
  301.  
  302.   ShowMenuItem("folderPaneContext-copy-location", !isServer && !isVirtualFolder);
  303.   ShowMenuItem("folderPaneContext-emptyTrash", (numSelected <= 1) && (specialFolder == 'Trash'));
  304.   EnableMenuItem("folderPaneContext-emptyTrash", true);
  305.  
  306.   var showSendUnsentMessages = (numSelected <= 1) && (specialFolder == 'Unsent Messages');
  307.   ShowMenuItem("folderPaneContext-sendUnsentMessages", showSendUnsentMessages);
  308.   if (showSendUnsentMessages) {
  309.     EnableMenuItem("folderPaneContext-sendUnsentMessages", IsSendUnsentMsgsEnabled(folderResource));
  310.   }
  311.  
  312.   ShowMenuItem("folderPaneContext-sep-edit", (numSelected <= 1));
  313.  
  314.   SetupNewMenuItem(folderResource, numSelected, isServer, serverType, specialFolder);
  315.  
  316.   ShowMenuItem("folderPaneContext-subscribe", (numSelected <= 1) && canSubscribeToFolder && !isVirtualFolder);
  317.   EnableMenuItem("folderPaneContext-subscribe", true);
  318.  
  319.   ShowMenuItem("folderPaneContext-sep1", (numSelected <= 1) && !isServer);
  320. // News folder context menu =============================================
  321.  
  322.   ShowMenuItem("folderPaneContext-newsUnsubscribe", (numSelected <= 1) && canSubscribeToFolder && isNewsgroup);
  323.   EnableMenuItem("folderPaneContext-newsUnsubscribe", true);
  324.   ShowMenuItem("folderPaneContext-markNewsgroupAllRead", (numSelected <= 1) && isNewsgroup);
  325.   EnableMenuItem("folderPaneContext-markNewsgroupAllRead", true);
  326.  
  327. // End of News folder context menu =======================================
  328.  
  329.   ShowMenuItem("folderPaneContext-markMailFolderAllRead", (numSelected <= 1) && isMailFolder && !isVirtualFolder);
  330.   EnableMenuItem("folderPaneContext-markMailFolderAllRead", true);
  331.  
  332.   ShowMenuItem("folderPaneContext-searchMessages", (numSelected <= 1) && !isVirtualFolder);
  333.   goUpdateCommand('cmd_search');
  334.  
  335.   return(true);
  336. }
  337.  
  338. function SetupRenameMenuItem(folderResource, numSelected, isServer, serverType, specialFolder)
  339. {
  340.   var msgFolder = folderResource.QueryInterface(Components.interfaces.nsIMsgFolder);
  341.   var folderTree = GetFolderTree();
  342.   var isSpecialFolder = !(specialFolder == "none" || (specialFolder == "Junk" && CanRenameDeleteJunkMail(msgFolder.URI))
  343.                                                   || (specialFolder == "Virtual"));
  344.   var canRename = GetFolderAttribute(folderTree, folderResource, "CanRename") == "true";
  345.  
  346.   ShowMenuItem("folderPaneContext-rename", (numSelected <= 1) && !isServer && !isSpecialFolder && canRename);
  347.   var folder = GetMsgFolderFromResource(folderResource);
  348.   EnableMenuItem("folderPaneContext-rename", !isServer && folder.isCommandEnabled("cmd_renameFolder"));
  349.  
  350.   if(canRename)
  351.   {
  352.     SetMenuItemLabel("folderPaneContext-rename", gMessengerBundle.getString("renameFolder"));
  353.   }
  354. }
  355.  
  356. function SetupRemoveMenuItem(folderResource, numSelected, isServer, serverType, specialFolder)
  357. {
  358.   var msgFolder = folderResource.QueryInterface(Components.interfaces.nsIMsgFolder);
  359.   var isMail = serverType != 'nntp';
  360.   var isSpecialFolder = !(specialFolder == "none" || (specialFolder == "Junk" && CanRenameDeleteJunkMail(msgFolder.URI))
  361.                                                   || (specialFolder == "Virtual"));
  362.   //Can't currently delete Accounts or special folders.
  363.   var showRemove = (numSelected <=1) && (isMail && !isSpecialFolder) && !isServer;
  364.  
  365.   ShowMenuItem("folderPaneContext-remove", showRemove);
  366.   if(showRemove)
  367.   {
  368.     var folder = GetMsgFolderFromResource(folderResource);
  369.     EnableMenuItem("folderPaneContext-remove", folder.isCommandEnabled("cmd_delete"));
  370.   }
  371.   if(isMail && !isSpecialFolder)
  372.   {
  373.     SetMenuItemLabel("folderPaneContext-remove", gMessengerBundle.getString("removeFolder"));
  374.   }
  375. }
  376.  
  377. function SetupCompactMenuItem(folderResource, numSelected)
  378. {
  379.   var folderTree = GetFolderTree();
  380.   var canCompact = GetFolderAttribute(folderTree, folderResource, "CanCompact") == "true";
  381.   ShowMenuItem("folderPaneContext-compact", (numSelected <=1) && canCompact);
  382.   var folder = GetMsgFolderFromResource(folderResource);
  383.   EnableMenuItem("folderPaneContext-compact", folder.isCommandEnabled("cmd_compactFolder"));
  384.  
  385.   if(canCompact)
  386.   {
  387.     SetMenuItemLabel("folderPaneContext-compact", gMessengerBundle.getString("compactFolder"));
  388.   }
  389. }
  390.  
  391. function SetupNewMenuItem(folderResource, numSelected, isServer, serverType, specialFolder)
  392. {
  393.   var folderTree = GetFolderTree();
  394.   var canCreateNew = GetFolderAttribute(folderTree, folderResource, "CanCreateSubfolders") == "true";
  395.   var isInbox = specialFolder == "Inbox";
  396.  
  397.   var isIMAPFolder = GetFolderAttribute(folderTree, folderResource,
  398.                        "ServerType") == "imap";
  399.  
  400.   var ioService = Components.classes["@mozilla.org/network/io-service;1"]
  401.                          .getService(Components.interfaces.nsIIOService);
  402.  
  403.   var showNew = ((numSelected <=1) && (serverType != 'nntp') && canCreateNew) || isInbox;
  404.   ShowMenuItem("folderPaneContext-new", showNew);
  405.   EnableMenuItem("folderPaneContext-new", !isIMAPFolder || !ioService.offline);
  406.   if(showNew)
  407.   {
  408.     if(isServer || isInbox)
  409.       SetMenuItemLabel("folderPaneContext-new", gMessengerBundle.getString("newFolder"));
  410.     else
  411.       SetMenuItemLabel("folderPaneContext-new", gMessengerBundle.getString("newSubfolder"));
  412.   }
  413. }
  414.  
  415. function ShowMenuItem(id, showItem)
  416. {
  417.   var item = document.getElementById(id);
  418.   if(item && item.hidden != "true") 
  419.     item.hidden = !showItem;
  420. }
  421.  
  422. function EnableMenuItem(id, enableItem)
  423. {
  424.   var item = document.getElementById(id);
  425.   if(item)
  426.   {
  427.     var enabled = (item.getAttribute('disabled') !='true');
  428.     if(enableItem != enabled)
  429.     {
  430.       item.setAttribute('disabled', enableItem ? '' : 'true');
  431.     }
  432.   }
  433. }
  434.  
  435. function SetMenuItemLabel(id, label)
  436. {
  437.   var item = document.getElementById(id);
  438.   if(item)
  439.     item.setAttribute('label', label);
  440. }
  441.  
  442. function SetMenuItemAccessKey(id, accessKey)
  443. {
  444.   var item = document.getElementById(id);
  445.   if(item)
  446.     item.setAttribute('accesskey', accessKey);
  447. }
  448.  
  449. function fillMessagePaneContextMenu()
  450. {
  451.   var message = GetLoadedMessage();
  452.   var numSelected = (message) ? 1 : 0;
  453.  
  454.   var isNewsgroup = false;
  455.  
  456.   if (numSelected == 1)
  457.     isNewsgroup = IsNewsMessage(message);
  458.  
  459.   // don't show mail items for links/images, just show related items.
  460.   var hideMailItems = gContextMenu.onImage || gContextMenu.onLink;
  461.  
  462.   SetupEditAsNewMenuItem("messagePaneContext-editAsNew", numSelected, (numSelected == 0 || hideMailItems));
  463.   SetupReplyToSenderMenuItem("messagePaneContext-replySender", numSelected, (numSelected == 0 || hideMailItems));
  464.   SetupReplyToNewsgroupMenuItem("messagePaneContext-replyNewsgroup", numSelected, isNewsgroup, (numSelected == 0 || hideMailItems));
  465.   SetupReplyAllMenuItem("messagePaneContext-replyAll" , numSelected, (numSelected == 0 || hideMailItems));
  466.   SetupForwardMenuItem("messagePaneContext-forward", numSelected, (numSelected == 0 || hideMailItems));
  467.   SetupCopyMessageUrlMenuItem("messagePaneContext-copyMessageUrl", numSelected, isNewsgroup, (numSelected == 0 || hideMailItems)); 
  468.   SetupCopyMenuItem("messagePaneContext-copyMenu", numSelected, (numSelected == 0 || hideMailItems));
  469.   SetupMoveMenuItem("messagePaneContext-moveMenu", numSelected, isNewsgroup, (numSelected == 0 || hideMailItems));
  470.   SetupLabelsMenuItem("messagePaneContext-labels", numSelected, (numSelected == 0 || hideMailItems));
  471.   SetupMarkMenuItem("messagePaneContext-mark", numSelected, (numSelected == 0 || hideMailItems));
  472.   SetupSaveAsMenuItem("messagePaneContext-saveAs", numSelected, (numSelected == 0 || hideMailItems));
  473.   SetupPrintPreviewMenuItem("messagePaneContext-printpreview", numSelected, (numSelected == 0 || hideMailItems));
  474.   SetupPrintMenuItem("messagePaneContext-print", numSelected, (numSelected == 0 || hideMailItems));
  475.   if (numSelected == 0 || hideMailItems)
  476.     ShowMenuItem("messagePaneContext-delete", false)
  477.   else {
  478.     goUpdateCommand('cmd_delete');
  479.     ShowMenuItem("messagePaneContext-delete", true)
  480.   }
  481.   SetupAddSenderToABMenuItem("messagePaneContext-addSenderToAddressBook", numSelected, (numSelected == 0 || hideMailItems));
  482.   SetupAddAllToABMenuItem("messagePaneContext-addAllToAddressBook", numSelected, (numSelected == 0 || hideMailItems));
  483.  
  484.   ShowMenuItem("context-addemail", gContextMenu.onMailtoLink);
  485.   ShowMenuItem("context-composeemailto", gContextMenu.onMailtoLink);
  486.   ShowMenuItem("context-createfilterfrom", gContextMenu.onMailtoLink);
  487.  
  488.   //Figure out separators
  489.   ShowMenuItem("messagePaneContext-sep-open", ShowSeparator("messagePaneContext-sep-open"));
  490.   ShowMenuItem("messagePaneContext-sep-reply", ShowSeparator("messagePaneContext-sep-reply"));
  491.   ShowMenuItem("messagePaneContext-sep-edit", ShowSeparator("messagePaneContext-sep-edit") || gContextMenu.onMailtoLink);
  492.   ShowMenuItem("messagePaneContext-sep-link", ShowSeparator("messagePaneContext-sep-link"));
  493.   ShowMenuItem("messagePaneContext-sep-image", ShowSeparator("messagePaneContext-sep-image"));
  494.   ShowMenuItem("messagePaneContext-sep-copy", ShowSeparator("messagePaneContext-sep-copy"));
  495.   ShowMenuItem("messagePaneContext-sep-labels-1", ShowSeparator("messagePaneContext-sep-labels-1"));
  496.   ShowMenuItem("messagePaneContext-sep-labels-2", ShowSeparator("messagePaneContext-sep-labels-2"));
  497.   
  498.   // if we are on an non-mailto link, go ahead and hide this separator
  499.   if (gContextMenu.onLink && !gContextMenu.onMailtoLink)
  500.     ShowMenuItem("messagePaneContext-sep-edit", false);
  501. }
  502.  
  503. function ShowSeparator(aSeparatorID)
  504. {
  505.   var separator = document.getElementById(aSeparatorID);
  506.   var sibling = separator.previousSibling;
  507.   var siblingID;
  508.   var siblingNextHiddenAttrib = separator.nextSibling.getAttribute("hidden");
  509.  
  510.   while (sibling && sibling.localName != "menuseparator") {
  511.     siblingID = sibling.getAttribute("id");
  512.     // for some reason, context-blockimage and context-unblockimage is not
  513.     // hidden on the very first time the context menu is invoked.  It's only
  514.     // hidden on subsequent triggers of the context menu.  Since we're not
  515.     // using these two menuitems in mailnews, we can ignore it if encountered.
  516.     if ((sibling.getAttribute("hidden") != "true") && 
  517.         (siblingNextHiddenAttrib != "true") &&
  518.         (siblingID != "context-blockimage") &&
  519.         (siblingID != "context-unblockimage"))
  520.       return true;
  521.     sibling = sibling.previousSibling;
  522.   }
  523.   return false;
  524. }
  525.  
  526. function IsMenuItemShowing(menuID)
  527. {
  528.   var item = document.getElementById(menuID);
  529.   if (item)
  530.     return item.hidden != "true";
  531.   return false;
  532. }
  533.  
  534. // message pane context menu helper methods
  535. function AddNodeToAddressBook(emailAddressNode)
  536. {
  537.   if (emailAddressNode)
  538.     AddEmailToAddressBook(emailAddressNode.getAttribute("emailAddress"),
  539.                           emailAddressNode.getAttribute("displayName"));
  540. }
  541.  
  542. function AddEmailToAddressBook(primaryEmail, displayName)
  543. {
  544.     window.openDialog("chrome://messenger/content/addressbook/abNewCardDialog.xul",
  545.                       "", "chrome,resizable=no,titlebar,modal,centerscreen",
  546.                       {primaryEmail:primaryEmail, displayName:displayName});
  547. }
  548.  
  549. // SendMailToNode takes the email address title button, extracts
  550. // the email address we stored in there and opens a compose window
  551. // with that address
  552. function SendMailToNode(emailAddressNode)
  553. {
  554.   if (emailAddressNode)
  555.     SendMailTo(emailAddressNode.getAttribute("fullAddress"));
  556. }
  557.  
  558. function SendMailTo(fullAddress)
  559. {
  560.   var fields = Components.classes["@mozilla.org/messengercompose/composefields;1"].createInstance(Components.interfaces.nsIMsgCompFields);
  561.   var params = Components.classes["@mozilla.org/messengercompose/composeparams;1"].createInstance(Components.interfaces.nsIMsgComposeParams);
  562.   if (fields && params)
  563.   {
  564.     fields.to = fullAddress;
  565.     params.type = Components.interfaces.nsIMsgCompType.New;
  566.     params.format = Components.interfaces.nsIMsgCompFormat.Default;
  567.     params.identity = accountManager.getFirstIdentityForServer(GetLoadedMsgFolder().server);
  568.     params.composeFields = fields;
  569.     msgComposeService.OpenComposeWindowWithParams(null, params);
  570.   }
  571. }
  572.  
  573. // CopyEmailAddress takes the email address title button, extracts
  574. // the email address we stored in there and copies it to the clipboard
  575. function CopyEmailAddress(emailAddressNode)
  576. {
  577.   if (emailAddressNode)
  578.     CopyString(emailAddressNode.getAttribute("emailAddress"));
  579. }
  580.  
  581. // CreateFilter opens the Message Filters and Filter Rules dialogs.
  582. //The Filter Rules dialog has focus. The window is prefilled with filtername <email address>
  583. //Sender condition is selected and the value is prefilled <email address>
  584. function CreateFilter(emailAddressNode)
  585. {
  586.   if (emailAddressNode)
  587.     CreateFilterFromMail(emailAddressNode.getAttribute("emailAddress"));
  588. }
  589.  
  590. function CreateFilterFromMail(emailAddress)
  591. {
  592.   if (emailAddress)
  593.     top.MsgFilters(emailAddress, GetFirstSelectedMsgFolder());
  594. }
  595.  
  596. function CopyFolderUrl()
  597. {
  598.   try 
  599.   {
  600.     var folderResource = GetSelectedFolderResource();
  601.     if (folderResource)
  602.     {
  603.       var msgFolder = folderResource.QueryInterface(Components.interfaces.nsIMsgFolder);
  604.       CopyString(msgFolder.folderURL);
  605.     }
  606.   }
  607.   catch (ex) 
  608.   {
  609.     dump("ex="+ex+"\n");
  610.   }
  611. }
  612.  
  613. function CopyMessageUrl()
  614. {
  615.   try {
  616.     var hdr = gDBView.hdrForFirstSelectedMessage;
  617.     var server = hdr.folder.server;
  618.  
  619.     var url;
  620.     if (server.isSecure) {
  621.       url = "snews://";
  622.     }
  623.     else {
  624.       url = "news://"
  625.     }
  626.     url += server.hostName;
  627.     url += ":";
  628.     url += server.port;
  629.     url += "/";
  630.     url += hdr.messageId;
  631.     CopyString(url);
  632.   }
  633.   catch (ex) {
  634.     dump("ex="+ex+"\n");
  635.   }
  636. }
  637.  
  638. function CopyString(aString)
  639. {
  640.   Components.classes["@mozilla.org/widget/clipboardhelper;1"]
  641.             .getService(Components.interfaces.nsIClipboardHelper)
  642.             .copyString(aString);
  643. }
  644.